home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBTIFF / config.site < prev    next >
Text File  |  1999-09-11  |  6KB  |  159 lines

  1. # $Header: /usr/people/sam/tiff/RCS/config.site,v 1.12 1996/02/22 18:16:44 sam Rel $
  2. #
  3. # TIFF Software
  4. #
  5. # Copyright (c) 1990-1996 Sam Leffler
  6. # Copyright (c) 1991-1996 Silicon Graphics, Inc.
  7. # Permission to use, copy, modify, distribute, and sell this software and 
  8. # its documentation for any purpose is hereby granted without fee, provided
  9. # that (i) the above copyright notices and this permission notice appear in
  10. # all copies of the software and related documentation, and (ii) the names of
  11. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  12. # publicity relating to the software without the specific, prior written
  13. # permission of Sam Leffler and Silicon Graphics.
  14. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  18. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  21. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  22. # OF THIS SOFTWARE.
  23. #
  24.  
  25. #
  26. # This file holds site-specific configuration parameters.
  27. #
  28. # Nothing is defined in here by default, the definitions
  29. # commented out below serve as documentation for what you
  30. # can set in this file or a config.local file.
  31. #
  32. # Note that you do not need to set anything here unless you
  33. # want to override the auto-configuration behaviour and/or
  34. # interactive prompting done by the configure script.
  35. #
  36.  
  37. #
  38. # Package controls.
  39. #
  40. #DSO="auto"            # auto|IRIX|IRIX52 enable DSO support for system
  41. #JPEG="no"            # yes|no configure JPEG support (see below)
  42. #ZIP="no"            # yes|no configure Deflate support (see below)
  43. #LIBGL="auto"            # yes|no|auto configure IRIS GL-based tools
  44. #LIBIMAGE="auto"        # yes|no|auto configure SGI RGB image tools
  45.  
  46. #
  47. # Directory parameters.
  48. #
  49. #DIR_BIN="/usr/local/bin"        # directory for tools
  50. #DIR_LIB="/usr/local/lib"        # directory for libraries
  51. #DIR_INC="/usr/local/include"        # directory for include files
  52. #DIR_MAN="/usr/local/man"        # directory for manual pages
  53.  
  54. #
  55. # Configuring supporting libraries.
  56. #
  57. # The TIFF software makes use of two ancillary packages: the IJG
  58. # distribution to support the JPEG codec and the zlib distribution
  59. # to support the Deflate codec.  To setup use of these packages you
  60. # need to specify where each package's include files are located and
  61. # where the pre-built library (static archive or DSO) is located.
  62. # These may be different or the same (as when the package is compiled
  63. # and referenced directly from the place where the software was
  64. # loaded and compiled).
  65. #
  66. # DIRS_LIBINC is a space-separated list of directories to use for
  67. # locating include files in these packages.  Note that it should not
  68. # include -I options as might be passed to the C preprocessor; these
  69. # are automatically added by the configure script when the Makefiles
  70. # are generated.
  71. #
  72. # DIR_<package>LIB is the pathname of the directory where <package>'s
  73. # pre-built library may be found; this is used when building a TIFF
  74. # DSO (on systems where support is present) and when building the
  75. # programs in the tools directory.  By default the configure script
  76. # will load the associated library using
  77. #
  78. #     -L${DIR_<package>LIB} -l<package>
  79. #
  80. # e.g. -L${DIR_JPEGLIB} -ljpeg.  If this is wrong for your system
  81. # (e.g. your compiler/loader does not support the -L option), then
  82. # the LIB<package> parameter can be set explicitly to specify the
  83. # library to use.
  84. #
  85.  
  86. #
  87. # JPEG-specific parameters; used when JPEG support is enabled (see above).
  88. #
  89. # JPEG support requires release 5 or later of the IJG code,
  90. # which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
  91. #
  92. #DIRS_LIBINC="$DIRS_LIBINC ../src/jpeg-5a" # directory for jpeg include files
  93. #DIR_JPEGLIB=../src/jpeg-5a        # directory for libjpeg
  94.  
  95. #
  96. # Deflate-specific parameters; used when Deflate support is enabled (see above).
  97. #
  98. # NB: Deflate support requires version 0.92 or later of the zlib
  99. #     library written by Jean-loup Gailly and Mark Adler.  Starting
  100. #     with about 0.95 the library is called libz.a (previously it was
  101. #     libgz.a).  The library was last found at
  102. #
  103. #        ftp://ftp.uu.net/graphics/png/code/zlib-0.93.tar.gz
  104. #
  105. #     Look for it also at ftp://ftp.uu.net/pub/archiving/zip/zlib.
  106. #
  107. #DIRS_LIBINC="$DIRS_LIBINC ../zlib"    # directory for zlib include files
  108. #DIR_GZLIB="../zlib"            # directory for libz
  109.  
  110. #
  111. # Miscellaneous parameters.
  112. #
  113. #FILLORDER="MS2LSB"            # bit order of cpu (MSB2LSB/LSB2MSB)
  114. #MANSCHEME="sysv-source-cat-strip"    # manual page installation scheme
  115.  
  116. #
  117. # Parameters used when building the software.
  118. #
  119. # Note that configure has several ENVOPTS built into it that are
  120. # set according to the target.  This is done to help naive folks.
  121. #
  122. # Beware of changing the INSTALL definition; you *must* have an
  123. # install script that emulates the Silicon Graphics install program!
  124. #
  125. #AR="/bin/ar"                # pathname of suitable ar program
  126. #AROPTS="rc"                # options to ar for creating archive
  127. #CC="gcc"                # name/pathname of C compiler
  128. #ENVOPTS="-Aa"                # options for getting ANSI C
  129. #GCOPTS="-g"                # options to pass C compiler
  130. #LIBPORT='${PORT}/libport.a'        # library with emulation code
  131. #MACHDEPLIBS=""                # extra libraries for linking
  132. #PORTFUNCS=""                # non-standard functions to emulate
  133. #RANLIB=":"                # pathname of suitable ranlib program
  134. #DSOSUF="so"                # DSO filename suffix
  135. #LIBCOPTS="-K PIC"            # compiler options for building library
  136.  
  137. #
  138. # Makefile construction parameters.
  139. #
  140. # These should not normally be set; configure will
  141. # deduce the appropriate syntax to use for includes.
  142. #
  143. #SETMAKE='MAKE    = ${MAKE}'        # define if make does not setup $MAKE
  144.  
  145. #
  146. # General system stuff used by the distribution.
  147. #
  148. #CHMOD="/etc/chmod"            # pathname of suitable chmod program
  149. #INSTALL='${SHELL} ${PORT}/install.sh'    # SGI install program/emulator
  150. #LN="/bin/ln"                # pathname of suitable ln program
  151. #LN_S="-s"                # option to ${LN} to create symlink
  152. #MV_F="-f"                # option to ${MV} to force operation
  153. #SED="/bin/sed"                # pathname of suitable sed program
  154. #SCRIPT_SH="/bin/sh"            # pathname of suitable shell
  155. #STRIP="/bin/strip"            # strip program used by install.sh
  156.